home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 2 / Amiga Tools 2.iso / grafik / bildanzeiger / superview-lib_dev / include / svoperators / svoperators.h < prev   
C/C++ Source or Header  |  1995-03-09  |  1KB  |  36 lines

  1. /* svoperators/svoperators.h        */
  2. /* Version    : 9.1                 */
  3. /* Date       : 24.09.1994          */
  4. /* Written by : Andreas R. Kleinert */
  5.  
  6. /* SVOperator-Version V1.x+ */
  7.  
  8. #ifndef SVOPERATORS_SVOPERATORS_H
  9. #define SVOPERATORS_SVOPERATORS_H
  10.  
  11.  
  12. struct SVP_OperatorNode
  13. {
  14.  struct Node svp_Node;              /* chaining Node                         */
  15.                                     /* (svp_Node->ln_Name is NULL            */
  16.                                     /*  by default !)                        */
  17.  
  18.  ULONG svp_Version;                 /* Library-Version of svoperator         */
  19.  
  20.  UBYTE svp_FileName [108];          /* use 30, as in struct FileInfoBlock    */
  21.  
  22.  UBYTE svp_Description [80];        /* e.g. "HAM8 -> HAM6"                   */
  23.  UBYTE svp_Author      [80];        /* e.g. "me :-)"                         */
  24.  
  25.  ULONG svp_Flags;                   /* SVP_FLAG_... (see below)              */
  26. };
  27.  
  28. #define SVP_VERSION (1)             /* If this Version, which depends on the */
  29.                                     /* svobject's Library-Version, is set,   */
  30.                                     /* it is guaranteed, that at least the   */
  31.                                     /* above information is available.       */
  32.  
  33. #define SVP_FLAGS_RESERVED (0xFFFFFFFF) /* none used yet */
  34.  
  35. #endif /* SVOPERATORS_SVOPERATORS_H */
  36.